home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / interspect_detect.nasl < prev    next >
Text File  |  2005-03-31  |  1KB  |  60 lines

  1. #
  2. #  This script was written by David Maciejak <david dot maciejak at kyxar dot fr>
  3. #
  4. #  This script is released under the GNU GPL v2
  5. #
  6.  
  7. if(description)
  8. {
  9.  script_id(15614);
  10.  script_version("$Revision: 1.1 $");
  11.  
  12.  name["english"] = "CheckPoint InterSpect";
  13.  
  14.  script_name(english:name["english"]);
  15.  
  16.  desc["english"] = "
  17. The remote host seems to be running CheckPoint InterSpect,
  18. an internet security gateway. 
  19.  
  20. The Nessus host is liked to have been put in quarantine, 
  21. its activity will be dropped for 30 minutes by default.
  22.  
  23. Risk factor : None";
  24.  
  25.  script_description(english:desc["english"]);
  26.  
  27.  summary["english"] = "Detect CheckPoint InterSpect";
  28.  
  29.  script_summary(english:summary["english"]);
  30.  
  31.  script_category(ACT_GATHER_INFO);
  32.  
  33.  script_copyright(english:"This script is Copyright (C) 2004 David Maciejak");
  34.  family["english"] = "General";
  35.  script_family(english:family["english"]);
  36.  script_dependencie("http_version.nasl");
  37.  script_require_ports(80,3128);
  38.  exit(0);
  39. }
  40.  
  41. #
  42. # The script code starts here
  43. #
  44.  
  45. include("http_func.inc");
  46. include("http_keepalive.inc");
  47.  
  48. port = get_http_port(default:80);
  49.  
  50. if(!get_port_state(port))exit(0);
  51.  
  52. req = http_get(item:"/", port:port);
  53. r = http_keepalive_send_recv(port:port, data:req, bodyonly:1);
  54. if( r == NULL )exit(0);
  55. if (egrep(pattern:"<TITLE>Check Point InterSpect - Quarantine</TITLE>.*Check Point InterSpect", string:r))
  56. {
  57.   security_note(port);
  58. }
  59. exit(0);
  60.